remove unicode from string python

40

python remove all unicode from string -

return ''.join([i if ord(i) < 128 else ' ' for i in text])

strip unicode characters from strings python -

def strip_non_ascii(string):
    ''' Returns the string without non ASCII characters'''
    stripped = (c for c in string if 0 < ord(c) < 127)
    return ''.join(stripped)


test = u'éáé123456tgreáé@€'
print test
print strip_non_ascii(test)

Comments

Submit
0 Comments